home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 264_01 / strings.doc < prev    next >
Text File  |  1980-01-01  |  640b  |  20 lines

  1. STRINGS
  2.  
  3. Purpose
  4. find printable strings in binary files
  5.  
  6. Syntax
  7. strings [-o$0] [-number] file...
  8.  
  9. Comments
  10. Strings searches a file for printable ASCII strings, which are
  11. defined as any sequence of 4 of more printable characters ending with a
  12. newline, dollar sign, or null.  Any type of file can be searched, but
  13. using the command on a text file has no obvious purpose.
  14.  
  15. Options
  16. -o      precede each string by its octal offset in the file.
  17. -$      don't allow '$' as a string terminator.
  18. -0      allow all nonprinting characters as string terminators.
  19. -number use number as the minimum string length instead of 4.
  20.